module RandomAirdropsASV {
    imports {
        Base
    }

    sound AirdropSoundPlane {
        category = RandomAirdrops,
        loop = false,
        is3D = true,
        maxInstancesPerEmitter = 1,
        clip {
            distanceMax = 400,
            distanceMin = 40,
            file = media/sound/airdrop0.wav,
            volume = 0.1,
        }
    }

    sound FarAirdropSoundPlane {
        category = RandomAirdrops,
        loop = false,
        is3D = false,
        maxInstancesPerEmitter = 1,
        clip {
            file = media/sound/airdrop0.wav,
            volume = 0.02,
        }
    }

	sound SmokeFlareIgnition {
	    category = RandomAirdrops,
	    loop = false,
	    is3D = true,
	    maxInstancesPerEmitter = 1,
	    clip {
	        distanceMax = 50,
	        distanceMin = 10,
	        file = media/sound/flareignition.wav,
	        volume = 1,
	    }
	}
}